.profile-popup {
    position: absolute;
    top: 60px;           /* Adjust as needed */
    right: 20px;         /* Align near top-right profile icon */
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 120px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    animation: dropdownIn 0.2s ease;
}

.profile-popup button {
    /* background-color: #0070f3; */
    color: rgb(8, 8, 8);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    background-color: white;
}

.profile-popup button:hover {
    /* background-color: rgb(193, 169, 169); */
    background-color: #f1f1f1;
    color:black;
}

.profile-popup button:active {
    transform: translateY(1px);
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-overlay {
    display: none;
}
